home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 16 / PC Actual CD 16.iso / cdactual / vb / AdvLabel2 / ILTest.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-09-14  |  1.7 KB  |  57 lines

  1. VERSION 5.00
  2. Object = "*\AAdvLabel.vbp"
  3. Begin VB.Form frmILTest 
  4.    BorderStyle     =   1  'Fixed Single
  5.    Caption         =   "Formulario de pruebas"
  6.    ClientHeight    =   1830
  7.    ClientLeft      =   45
  8.    ClientTop       =   330
  9.    ClientWidth     =   4095
  10.    ControlBox      =   0   'False
  11.    LinkTopic       =   "Form1"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   1830
  15.    ScaleWidth      =   4095
  16.    StartUpPosition =   3  'Windows Default
  17.    Begin AdvLabel.IncLabel IncLabel1 
  18.       Height          =   1095
  19.       Left            =   120
  20.       TabIndex        =   1
  21.       Top             =   120
  22.       Width           =   3855
  23.       _ExtentX        =   6800
  24.       _ExtentY        =   1931
  25.       Caption         =   $"ILTest.frx":0000
  26.    End
  27.    Begin VB.CommandButton cmdOk 
  28.       Caption         =   "Salir"
  29.       Default         =   -1  'True
  30.       Height          =   375
  31.       Left            =   1320
  32.       TabIndex        =   0
  33.       Top             =   1320
  34.       Width           =   1455
  35.    End
  36. Attribute VB_Name = "frmILTest"
  37. Attribute VB_GlobalNameSpace = False
  38. Attribute VB_Creatable = False
  39. Attribute VB_PredeclaredId = True
  40. Attribute VB_Exposed = False
  41. '*****************************************************
  42. ' Curso de creaci
  43. n de controles en VB5 por intec
  44. ' Fichero:  frmILTest (ILTest.frm)
  45. ' Autor:    Lleonard del R
  46. o (intec)
  47. ' Fecha:    1/9/97
  48. ' Versi
  49. n:  2.0
  50. ' Descr:    Formulario de prueba para el control
  51. '           "etiqueta incremental".
  52. '*****************************************************
  53. Option Explicit
  54. Private Sub cmdOk_Click()
  55.     Unload Me
  56. End Sub
  57.